home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Merciful 2
/
Merciful - Disc 2.iso
/
software
/
i
/
imagefxv2.1a.lha
/
ImageFX
/
Rexx
/
CineMorph
/
NextActive.cmorph
next >
Wrap
Text File
|
1996-03-02
|
376b
|
29 lines
/*
* Arexx program for CineMorph 2.0
*
* Activate next point in the current grid.
* Written by Thomas Krehbiel
*
*/
OPTIONS RESULTS
GetStatus GridSize
PARSE VAR result gridw gridh
GetStatus ActivePoint
PARSE VAR result ax ay
ax = ax + 1
IF ax >= gridw THEN DO
ax = 0
ay = ay + 1
IF ay >= gridh THEN DO
ay = 0
END
END
ActivePoint ax ay
EXIT